home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / tcp / cp4_2_1.lha / cp4_NOTREG / UpgradeFromCP4.0b < prev    next >
Text File  |  1995-04-12  |  1KB  |  70 lines

  1. ;Installer V4 For AmiTCP Control Panel V4.2
  2. ;
  3. ;©Martin Hunt 1995
  4. ;
  5. ;
  6.  
  7.  
  8. (set amitcpdir
  9.    (askdir
  10.        (prompt "Where is AmiTCP installed?")
  11.        (help @askdir-help)
  12.        (default "dh1:amitcp")
  13.    )
  14. )
  15.  
  16. (makeassign "amitcp" amitcpdir)
  17.  
  18.  
  19. (set @default-dest
  20.    (askdir
  21.        (prompt "Where is AmiTCP Control Panel Installed?")
  22.        (help @askdir-help)
  23.        (default "sys:wbstartup")
  24.    )
  25. )
  26.  
  27. (copyfiles
  28.    (prompt "Copying AmiTCP Control Panel to " @default-dest )
  29.    (help @copyfiles-help)
  30.    (source "cp_MainProg/controlpanel4.2")
  31.    (dest @default-dest)
  32.    (infos)
  33. )
  34. (copyfiles
  35.    (prompt "Copying AmiTCP Control Panel to " @default-dest )
  36.    (help @copyfiles-help)
  37.    (source "cp_MainProg/controlpanel.exe")
  38.    (dest "c:")
  39. )
  40.  
  41. (set @doc-dest
  42.    (askdir
  43.        (prompt "Where do you want to install AmiTCP Control Panel's Documents?")
  44.        (help @askdir-help)
  45.        (default "amitcp:docs")
  46.    )
  47. )
  48.  
  49.  
  50. (copyfiles
  51.    (prompt "Copying AmiTCP Control Panel Docs to " @doc-dest )
  52.    (help @copyfiles-help)
  53.    (source "docs")
  54.    (all)
  55.    (dest @doc-dest)
  56.    (infos)
  57.    (confirm)
  58. )
  59.  
  60. (copyfiles
  61.    (prompt "Copying AmiTCP Control Panel Scripts and Commands to AmiTCP:bin" )
  62.    (help @copyfiles-help)
  63.    (source "bin")
  64.    (all)
  65.    (dest "Amitcp:bin")
  66.    (infos)
  67.    (confirm)
  68. )
  69.  
  70.